551a563af222b4da08ccfc5e362ca3cc6fbc3e4c,bundles/extensions/event/src/main/java/org/apache/sling/event/impl/jobs/jcr/LockManager.java,LockManager,updateLastModified,#,236
Before Change
this.backgroundSession.save();
logger.debug("Heartbeat at {}", Environment.APPLICATION_ID);
} catch (final RepositoryException re) {
this.ignoreException(re);
}
}
}
After Change
this.backgroundSession.save();
logger.debug("Heartbeat at {}", Environment.APPLICATION_ID);
} catch (final RepositoryException re) {
this.ignoreException(re);
try {
this.backgroundSession.refresh(false);
} catch (final RepositoryException ignore) {
this.ignoreException(ignore);
}
}
}